home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / gcc.h < prev    next >
C/C++ Source or Header  |  1992-06-08  |  730b  |  41 lines

  1. /* $Id: gcc.h,v 1.1 92/04/01 18:27:59 pete Exp $ */
  2.  
  3. /* this file contains forward and external function declarations */
  4.  
  5. /* forward declarations */
  6. #if defined( _MSDOS )
  7. void *xmalloc( ), *xrealloc( );
  8. #else
  9. int xmalloc( );
  10. #endif
  11.  
  12. void perror_with_name( );
  13. void pfatal_with_name( );
  14. void perror_exec( );
  15. #ifdef HAVE_VPRINTF
  16. int fatal( );
  17. #else
  18. void fatal( );
  19. #endif
  20.  
  21. void error( );
  22. void give_switch( );
  23.  
  24.  
  25. /* externally declared functions */
  26. extern void extend_argv( );
  27. extern void free( );
  28. extern int unlink( );
  29. extern int access( );
  30. extern char* mktemp( );
  31. extern int pipe( );
  32. extern int vfork( );
  33. extern int close( );
  34. extern int dup( );
  35. extern int wait( );
  36.  
  37. #ifndef __TURBOC__
  38. extern int getpid( );
  39. extern int kill( );
  40. #endif
  41.